home *** CD-ROM | disk | FTP | other *** search
/ Komputer for Alle 2001 #3 / CD 3 (Black) - 2001.iso / K-CS.dcr / 00205_Mouse Toggle del 1.ls < prev    next >
Encoding:
Text File  |  2001-01-08  |  857 b   |  27 lines

  1. on new me
  2.   set the visible of sprite the spriteNum of me to 1
  3.   set the visible of sprite (the spriteNum of me + 1) to 0
  4.   set the visible of sprite (the spriteNum of me + 2) to 0
  5.   set the visible of sprite (the spriteNum of me + 3) to 0
  6.   set the visible of sprite (the spriteNum of me + 4) to 0
  7. end
  8.  
  9. on mouseEnter me
  10.   set the visible of sprite (the spriteNum of me + 1) to 1
  11. end
  12.  
  13. on mouseLeave me
  14.   set the visible of sprite (the spriteNum of me + 1) to 0
  15. end
  16.  
  17. on mouseDown me
  18.   set the visible of sprite (the spriteNum of me + 2) to 1
  19.   set the visible of sprite (the spriteNum of me + 3) to 1
  20.   set the locV of sprite 104 to 346
  21.   updateStage()
  22. end
  23.  
  24. on getBehaviorDescription
  25.   return "Hilite two fields for descriptions. Third field is intended for a toggling bitmap (checkboxes and such). The paramitra is 1 for default on, 0 for default off."
  26. end
  27.